home *** CD-ROM | disk | FTP | other *** search
- #ifndef _FS_SYSINF_H
- #define _FS_SYSINF_H
-
- #ifndef UCHAR
- # define UCHAR unsigned char
- #endif
- #ifndef USHORT
- # define USHORT unsigned short
- #endif
-
- typedef struct
- {
- UCHAR bootDeviceType;
- UCHAR bootUnitNumber;
- USHORT memoryIntsallFlag;
- USHORT memorySize;
- UCHAR singleDrive;
- UCHAR reserve_01[2];
- UCHAR cpmgrInstallFlag;
- UCHAR vjeInstallFlag;
- UCHAR dmy_1;
- USHORT ramDiskSize;
- UCHAR reserve_02[1];
- UCHAR reserve_03[2];
- UCHAR fepInstallFlag;
- UCHAR reserve_04;
- UCHAR reserve_05[13];
- UCHAR reserve_06[16];
- struct
- { UCHAR drvTyp;
- UCHAR drvNo;
- } drvinf[16];
- UCHAR printerId;
- UCHAR printerMode;
- UCHAR printerOption;
- UCHAR printerReserve[2];
- UCHAR printerType;
- UCHAR reserve_07[10];
- UCHAR reserve_08[2];
- struct
- { UCHAR baud;
- UCHAR mode;
- USHORT sndTimeOut;
- USHORT rsvTimeOut;
- } rs232c[5];
- UCHAR reserve_09[16*4+8];
- } SYSINF_T;
-
- extern void ESR_getSetup( SYSINF_T * );
-
- #endif
-